home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Environments
/
SmallEiffel 0.3.3
/
SmallEiffel PPC
/
lib_show
/
bench2
/
bench2.csh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1996-06-13
|
299 b
|
16 lines
|
[
TEXT/EDIT
]
#!/bin/csh
#
# Run this file to have a comparison
#
foreach b (*_bench2.e)
set cmd = "compile $b make -boost -O3"
echo $cmd
set cmd = "/bin/time ${SmallEiffel}/bin/$cmd"
echo " Compiling/Running :"
$cmd >! tmp
grep " real " tmp
/bin/time a.out >! tmp
grep " real " tmp
end
/bin/rm -f tmp